home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / ItsxPrimitives.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  1.3 KB  |  42 lines

  1. //******************************************************************************
  2. //    File: ItsxPrimitives.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Declarations for the ItsxPrimitives COM interface
  5. //******************************************************************************
  6.  
  7.  
  8. #ifndef ITSXPRIMITIVES_H
  9. #define ITSXPRIMITIVES_H
  10.  
  11.  
  12. #include "itsxcommon.h"
  13.  
  14.  
  15. #undef INTERFACE
  16. #define INTERFACE ItsxPrimitives
  17.  
  18. DECLARE_INTERFACE_(ItsxPrimitives, IUnknown)
  19. {
  20.     // IUnknown members
  21.     STDMETHOD(QueryInterface) (THIS_ REFIID, PPVOID) PURE;
  22.     STDMETHOD_(ULONG, AddRef)  (THIS) PURE;
  23.     STDMETHOD_(ULONG, Release) (THIS) PURE;
  24.  
  25.     // ItsxPrimitives members
  26.     STDMETHOD(CreateCone) (THIS_ int, int, float, float) PURE;
  27.     STDMETHOD(CreateCube) (THIS_ int, float, float, float) PURE;
  28.     STDMETHOD(CreateCylinder) (THIS_ int, int, float, float, float) PURE;
  29.     STDMETHOD(CreatePlane) (THIS_ int, int) PURE;
  30.     STDMETHOD(CreateSphere) (THIS_ int, int, float) PURE;
  31.     STDMETHOD(CreateTorus) (THIS_ int, int, float) PURE;
  32. };
  33.  
  34. // typedef a pointer to this interface
  35. typedef ItsxPrimitives* PITSXPRIMITIVES;
  36.  
  37. // define a GUID for this interface
  38. // {B887D602-2F64-11d1-A255-006097D15F58}
  39. DEFINE_GUID(IID_ItsxPrimitives, 0xb887d602, 0x2f64, 0x11d1, 0xa2, 0x55, 0x0, 0x60, 0x97, 0xd1, 0x5f, 0x58);
  40.  
  41.  
  42. #endif // ITSXPRIMITIVES_H